home *** CD-ROM | disk | FTP | other *** search
/ Apple Developer Connection Student Program / ADC Tools Sampler CD Disk 3 1999.iso / Cool Demos, SDKs, & Tools / Demos⁄Tools⁄Offers / Alpha ƒ / Help / ElecCompletions Help (.txt) < prev    next >
LaTeX Document  |  1999-02-26  |  17KB  |  346 lines

  1.  # ###################################################################
  2.  #  Vince's Additions - an extension package for Alpha
  3.  #  FILE: "ElecCompletions Help"
  4.  #                                    created: 1/8/97 {2:24:21 pm} 
  5.  #                                last update: 26/2/1999 {8:17:54 pm} 
  6.  #  Author: Vince Darley
  7.  #  E-mail: <darley@fas.harvard.edu>
  8.  #    mail: Division of Engineering and Applied Sciences, Harvard University
  9.  #          Oxford Street, Cambridge MA 02138, USA
  10.  #     www: <http://www.fas.harvard.edu/~darley/>
  11.  # Copyright (c) 1997-99  Vince Darley
  12.  # Some pieces pasted from Alpha-D mailing list responses.
  13.  # ###################################################################
  14. The idea with electric completions is to save you key strokes. When you hit
  15. cmd-tab Alpha tries to expand what you have just typed to give the rest of
  16. what you want (the choice of cmd-tab can be adjusted in the 
  17. 'Config->Global->Special Keys' dialog).
  18. If you want basic help/tutorial information, do the following: when 
  19. you're in a mode for which you want a tutorial on electric completions,
  20. select 'Completions Tutorial' from the 'Mode Prefs' menu.  Follow 
  21. the instructions there.
  22. You can modify the following preferences using the 
  23. 'Config->Global->Flags->Electrics' menu item:
  24.  useElectricMenu --- use electric template menu 
  25.  showElectricsInMenu --- show electric completions in menu 
  26.  showElectricKeysInMenu --- show electric key bindings in menu
  27.  modeSpecificElecTab --- use mode-specific electric tab 
  28.  electricTab --- use electric tab 
  29.  templateStopColor --- colour of template stops 
  30.  listPickIfMultExpds --- similarly for expansions 
  31.  ElectricFillers --- The format of the template stops:
  32.           0 = just use bullets
  33.           1 = use bullets but signal the name in the status window
  34.           2 = insert names into the window with the bullets
  35.           3 = insert names and highlight into the window with the bullets
  36.  maxTemplateNesting--- level of nesting we allow before clearing 
  37. The electric menu contains a 'Templates' sub-menu, which contains global 
  38. templates stored in the variable 'univ::MenuTemplates', and mode-specific
  39. templates stored in variables ${mode}Templates.  The format of these 
  40. variables is a list of names, which correspond to procedures when prepended 
  41. with 'file::'.  You can add new items by using the menu item.
  42.           Templates
  43. Many of the routines in Vince's Additions allow you to insert templates for 
  44. 'for' loops, '\begin...\end environments', file headers, function comments, 
  45. and even entire documents.  This section details the features of Vince's 
  46. Additions which allow you to do that.  Here's an example of a 'for' template
  47. in C++ mode (created just by typing 'for<cmd-Tab>'):
  48.     for (
  49. <init>;
  50. <test>;
  51. <increment>){
  52. <loop body>
  53. Once a template has been inserted, it will often contain a number of 
  54. 'place-markers' or 'template-stops' at each of which you will most likely 
  55. wish to enter some text/code.  You can jump backwards and forwards amongst 
  56. these stops using a set of key bindings.  You have a choice between two 
  57. basic sets (you select using the 'Electric Bindings' dialog):
  58.     Operation               Standard Bindings         Alternative Set
  59.     "Next Stop Or Tab"       Tab                       ctrl-j      
  60.     "Complete"               cmd-Tab                   cmd-Tab     
  61.     "Expand"                 cmd-Space                 Tab 
  62.     "Prev Stop"              shift-Tab                 shift-ctrl-j        
  63.     "Real Tab"               opt-Tab                   opt-Tab
  64.     "nth Stop"               ctrl-Tab                  ctrl-opt-j          
  65.     "Clear All Stops"        shift-ctrl-Tab            shift-ctrl-opt-j            
  66. Furthermore you can redefine any of these bindings using that same
  67. dialog.
  68. You have a choice between four different formats for the visual appearance 
  69. of the template-stops.  They are usually signified by a bullet '
  70. ', but 
  71. more elaborate methods are supported.  These templates may be nested 
  72. without any extra effort on your part.  Most of this code is contained in 
  73. the file "betterTemplates.tcl", although all the bindings and initialisation 
  74. are in "elecBindings.tcl".
  75. Look at the new 'electric' menu for a list of these bindings, together 
  76. with some other functions.
  77. ================================================================================
  78.           Completions
  79. I've now written a unified collection of procedures to address command 
  80. completion, code indentation, electric-code generation, word completion and 
  81. related facilities (incorporating my old TeX-reference completion for 
  82. example). 
  83. Here's a typical example from TeX mode, I type:
  84.     for an explanation of this phenomenon,
  85.     please refer to Fig<cmd-Tab>
  86. The <cmd-Tab> signifies that Vince's Additions should try to complete the 
  87. currently typed text.  In this case the completion is:
  88.     for an explanation of this phenomenon,
  89.     please refer to Figure~\ref{fig-
  90. If I hit <cmd-Tab> again, Vince's Additions tries to search for TeX 
  91. '\labels' which begin with 'fig-' to insert the first such label
  92. it finds into the text:
  93.     for an explanation of this phenomenon,
  94.     please refer to Figure~\ref{fig-heat-vs-time}
  95. If this is the wrong one, I can keep hitting <cmd-Tab> until I reach the 
  96. correct completion:
  97.     for an explanation of this phenomenon,
  98.     please refer to Figure~\ref{fig-explanation}
  99. Here's an example from C/C++ modes. I type 'for<cmd-Tab>' and get:
  100.     for (;
  101. This works at any current level of indentation, and the bullet marks '
  102. are placemarkers.  You can just press 'Tab' (without 'cmd') to jump from 
  103. one to the next.
  104. These facilities are activated as follows:
  105.     Tab --- plain - either 'indent' or 'next template mark'
  106.             cmd   - complete the current text.
  107.             opt   - insert a real tab.
  108.                         
  109. So, pressing Tab by default will _not_ necessarily insert a tab, rather it 
  110. will indent the current line of code to the correct indentation level to 
  111. match the code around it.  
  112.             Types of completion
  113. Command-Tab has a number of different meanings, which will be explained 
  114. below.  Completions are listed in order of precedence.
  115.               User completion: 
  116. all entries defined in the array 'userCompletions' are checked and inserted 
  117. if appropriate.  This is useful to make 'vmd' turn into 'Vince Darley', or 
  118. 'www' into my home-page url, or ...
  119. User completions are active in all modes, and take precedence over all 
  120. other completion types.
  121.               Context sensitive completion: 
  122. Context sensitive completions are mode dependent.  In some modes you 
  123. can tell relatively easily from the context whether a particular 
  124. 'word' is a variable or procedure name or...  If different completion
  125. procedures are useful for different types of word, then they are 
  126. checked next.  For instance, in Tcl mode, a word beginning with '$',
  127. or preceded by 'set' or 'global' is a variable name.  It should 
  128. therefore be completed preferentially as a variable, rather than
  129. being expanded as a command.  E.g. $str should normally not be
  130. expanded to '$string ...' since it's clearly not the command 'string' 
  131. that the user is trying to type.  
  132.               Command completion: 
  133. For instance: type 'str<cmd-tab>' and it is completed to 'string' (in Tcl 
  134. mode).  If there are multiple possibilities then the longest unique prefix 
  135. is inserted.
  136. The available completions are mode dependent, and stored as a large string 
  137. in the variable ${mode}cmds.  They must be stored alphabetically, and
  138. be separated by whitespace.  THERE IS NO LONGER A NEED TO BEGIN AND
  139. END THE LIST WITH WHITESPACE.
  140. Here is the default value for Tcl mode:
  141.     set Tclcmds { append array catch close concat continue elseif error
  142.     for foreach format lindex lsearch lsort regexp regsub
  143.     rename return string switch while }
  144.               Ensemble completion: 
  145. type 'string co<cmd-Tab' and this is both completed to 'string compare' and 
  146. an electric template is inserted for the arguments of this two part 
  147. command.  Useful for any case in which the word before last is the command, 
  148. and the word just before is part of a refinement of that command, in any 
  149. situation for which a number of further arguments will be filled in.
  150.               Electric code template generation: 
  151. type 'for<cmd-tab>' and a complete template for code is generated (example 
  152. for C mode):
  153.     for (;
  154. You can move from one template mark '
  155. ' to the next with, plain 'Tab' - 
  156. I automatically sense whether a template insertion is in progress or
  157. not and interpret tab accordingly.
  158. These are again mode dependent. Each is stored individually as an element 
  159. of the array ${mode}electrics, so, for instance the above electric code is 
  160. generated by:
  161.     set Celectrics(for) " (
  162. )\{\n\t
  163. \n\}\n
  164. Note how the bullets are double in the definition.  You can actually place 
  165. an explanatory bit of text between pairs of bullets.  This is then used as 
  166. a hint to the user:
  167.     set Celectrics(for) " (
  168. start
  169. increment
  170. )\{\n\t
  171. \n\}\n
  172.               Class name completion: 
  173. In C++ mode, when entering a class definition, the class name occurs 
  174. multiple times.  To save entering all of these, this completion will
  175. fill them all in for you.  It works like this: type 'class<cmd-tab>'
  176.     class 
  177. <object name> : public 
  178. <parent> {
  179.       public:
  180. <object name>(
  181. <args>);
  182. <object name>(void);
  183. Now type the class name, say 'toaster', followed by <cmd-tab>.  This
  184. will result in:
  185.     class toaster : public 
  186. <parent> {
  187.       public:
  188.         toaster(
  189. <args>);
  190.         ~toaster(void);
  191. i.e. each occurrence of the electric stop 'object name' has been 
  192. filled in correctly.  This feature may be easily extended to more
  193. complex examples.
  194.               TeX reference completion: 
  195. type '\ref<cmd-Tab>' and the command is automatically completed with the 
  196. name of a nearby \label{}.  Repeated <cmd-Tab> keypresses will cycle 
  197. through all \label's.  Further, these commands chain together, so typing 
  198. '\eqr<cmd-Tab>' will complete the \eqref and continue to fill in a nearby 
  199. label!
  200. These were explained above.  Note that the reference completions can be 
  201. instigated by command completion on, 'Fig' 'Chap' 'Eq.'  'Sec', ...  which 
  202. insert the standard label prefix 'fig:' 'chap:' 'eq:' 'sec:' as 
  203. appropriate.  If you complete with no prefix, then any label will match; if 
  204. you have a prefix then only those which match will be suggested.
  205.               TeX citation completion.  
  206. Type '\cite{Darley19<cmd-Tab>' and the command is completed with a matching 
  207. citation entry from one of your '.bib' database files.  If there are 
  208. multiple possibilities, then you are prompted with a list from which to 
  209. choose.  (Note: if you find the selection box a bit narrow, it is possible
  210. to edit Alpha using ResEdit to increase its size).  Depending upon the
  211. value of a TeX flag, the list can include the titles of each choice,
  212. making it more obvious to you which is correct.
  213.               TeX environment completion: 
  214. \begin{} \end{} pairs with synchronisation of the parameter, and template 
  215. generation of the body.
  216. You can complete '\begin<cmd-Tab>' followed by 'equ<cmd-Tab>' to the
  217. following:
  218.     \begin{equation}
  219.         \label{eq:
  220.     \end{equation}
  221. You have a choice between the double-completion, as above, or just typing
  222. '\begin{equation}<cmd-Tab>' which will do the job in one go.
  223. Similar things work for 'itemize' 'enumerate' etc.  Of particular use
  224. are the completions for 'figure' environments, from which you can enter
  225. ordinary figures, floating figures, and a large number of sub-figure 
  226. configurations (2 figures side-by-side, a block of 4,...).  For instance,
  227. a handful of key-presses will give you this:
  228.     \begin{figure}
  229.         \centering
  230.         \subfigure[
  231. subfig caption
  232. ]{\label{fig:
  233.             \includegraphics[width=\figstwo]{
  234. graphics file
  235. }}\goodgaptwo
  236.         \subfigure[
  237. subfig caption
  238. ]{\label{fig:
  239.             \includegraphics[width=\figstwo]{
  240. graphics file
  241.         \subfigure[
  242. subfig caption
  243. ]{\label{fig:
  244.             \includegraphics[width=\figstwo]{
  245. graphics file
  246. }}\goodgaptwo
  247.         \subfigure[
  248. subfig caption
  249. ]{\label{fig:
  250.             \includegraphics[width=\figstwo]{
  251. graphics file
  252.         \caption
  253. [short caption for t.o.f.]
  254. caption
  255.         \label{fig:
  256.     \end{figure}
  257. For these to work, you must use the correct LaTeX packages (graphics, 
  258. floatingfigure or subfigure as appropriate, although the code will 
  259. automatically insert the correct 'usepackage' specifications for you if 
  260. desired), and you may need the following definitions in your LaTeX 
  261. preamble:
  262.     \newlength{\goodspace}
  263.     \newlength{\goodspacethree}
  264.     \newlength{\goodspacefour}
  265.     \newlength{\figstwo}
  266.     \newlength{\figsthree}
  267.     \newlength{\figsfour}
  268.     \setlength{\goodspace}{\subfigtopskip+\subfigbottomskip}
  269.     \setlength{\goodspacethree}{\goodspace}
  270.     \setlength{\goodspacefour}{\goodspace*\real{0.6}}
  271.     \newcommand{\goodgap}{\hspace{\goodspace}}
  272.     \newcommand{\goodgaptwo}{\goodgap}
  273.     \newcommand{\goodgapthree}{\hspace{\goodspacethree}}
  274.     \newcommand{\goodgapfour}{\hspace{\goodspacefour}}
  275.     \setlength{\figstwo}{(\linewidth-\goodspace)/2-1pt}
  276.     \setlength{\figsthree}{(\linewidth-\goodspace *2)/3-1pt}
  277.     \setlength{\figsfour}{(\linewidth-\goodspace *\real{1.8})/4-1pt}
  278. These allow good alignment and spacing for most subfigure combinations
  279. without the need for manual intervention.  
  280. Some environments can contain an arbitrary number of items.  In this case, 
  281. hitting 'shift-option-i' will add an item.  Here we turn this:
  282.     \begin{description}
  283.         \item[First one] here's the description
  284.         \item[
  285. description
  286.     \end{description}
  287. into:
  288.     \begin{description}
  289.         \item[First one] here's the description
  290.         \item[
  291.         \item[
  292. description
  293.     \end{description}
  294. Similar entries work correctly for itemised, enumerated, aligned,... 
  295. environments.
  296.               File-name completion:
  297. Useful for Shel mode, this allows you to type a partial directory or 
  298. filename and hit cmd-Tab to have it extended as much as possible.
  299.               Tcl Variable Completion:
  300. Tcl variables are often referenced with '$var' or just 'var' or '${var}'.  
  301. You can complete between any of these types.  A local search for a match is 
  302. done and the closest match inserted.  Again you can cycle through other 
  303. matches with <cmd-Tab>
  304.               Word Completion: 
  305. if none of the above succeeded then the current word is completed to copy 
  306. nearby words (variable names) in the file.  Again, repeated presses will 
  307. cycle through other possibilities.
  308. In any form of text in any mode, if no mode-specific completion matches, 
  309. then any local word can match, complete and be cycled through as usual.
  310.             Template insertion
  311. You'll notice in a lot of the above examples that bullets '
  312. ' are inserted 
  313. into the text.  In fact the user has a choice of four different levels of 
  314. interaction with the template insertion procedures.  You can change this 
  315. using the universal preferences dialog (in the config menu).  You can move
  316. from one insertion point to the next using the 'tab' key; move backwards 
  317. with 'shift-tab' and jump to any insertion point with 'ctrl-tab'.  If you 
  318. don't like these key bindings, an alternative set is available by a change 
  319. in the universal preferences.  You can also choose the colour of the
  320. inserted bullets/prompts.
  321.             The Electric Menu
  322. By default all items in the ${mode}electrics array are inserted into a new 
  323. menu.  This allows you to insert them, and get a feel for a small number 
  324. of the completions which exist.  Also at the bottom of the menu are items 
  325. for each of the standard key bindings these routines use, to help you to 
  326. remember them.
  327.             Completion feedback
  328. Help me to help you!
  329. Completions for some common items just don't currently exist.  So if you 
  330. try to complete something and it doesn't work, why not write a completion 
  331. for it?  Once you have assembled a few, mail them to me (preferably 
  332. binhex'd, since bullets '
  333. ' don't travel well by ASCII mail).  I'd
  334. particularly like completions for other modes.
  335.             Speed
  336. Alpha has some limitations which means some aspects of Vince's Additions
  337. are a little bit slow (on low-end machines, at least).
  338. Two things you can do to alleviate this: first, in modes for which Tab (or 
  339. ctrl-j under the alternative bindings) ALWAYS means to go the next template 
  340. stop and never means to indent the current line, define a new mode variable 
  341. 'tabNeverIndents' by adding the following line to your "prefs.tcl":
  342.     newPref f tabNeverIndents 1 MODE
  343. where 'MODE' is 'TeX', 'Java', 'HTML' or whatever.  You'll need to add one
  344. such line for each relevant mode.
  345. ================================================================================
  346.